home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 3
/
Amiga Tools 3.iso
/
rexx
/
ps_coords.pvrx
< prev
next >
Wrap
Text File
|
1994-08-10
|
1KB
|
35 lines
/***************************************************************************
* *
* $VER: PS_Coords.pvrx 1.0 (10.Aug.94) *
* Copyright © 1994 by Stylus, Inc. *
* Author: Jeff Blume *
* *
* Flips the coordinate system to PostScript® *
* *
* *
***************************************************************************/
/*
call open STDOUT,"RAM:RxOut.txt",W
call open STDERR,"RAM:RxErr.txt",W
trace R
*/
'Lock'
if rc ~= 0 then exit
/* GetPageSize' Pdims. - This doesn't work, but is more correct REXX ??? */
'GetPageSize' Pdims /* This works */
Var.X1 = Pdims.X1
Var.Y1 = Pdims.Y2
Var.X2 = Pdims.X2
Var.Y2 = Pdims.Y1
'SetPageSize' Var
'UnLock'
EXIT